home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6371 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.4 KB  |  49 lines

  1. Newsgroups: comp.lang.c
  2. Path: news.sprintlink.net!eskimo!news
  3. From: mag@eskimo.com (mAg)
  4. Subject: Re: 32-bit assembler instructions in c?
  5. X-Nntp-Posting-Host: tia1.eskimo.com
  6. Message-ID: <Dn9M8u.81M@eskimo.com>
  7. Sender: news@eskimo.com (News User Id)
  8. Organization: *.*
  9. X-Newsreader: WinVN 0.93.10
  10. References: <312C89D5.2B5A@dtek.chalmers.se>
  11. Date: Sat, 24 Feb 1996 05:36:29 GMT
  12.  
  13. In article <312C89D5.2B5A@dtek.chalmers.se> (Thu, 22 Feb 1996 16:20:53 
  14. +0100), d95danb@dtek.chalmers.se says :
  15. >
  16. >How do I use 32-bit assembler instructions, like
  17. >movsd and stosd in my c-programs?
  18. >If it's possible - please email the answer to this
  19. >adress, d95danb@dtek.chalmers.se
  20. >
  21. >Thanks!!
  22. >
  23. >--------------------------------------------------
  24. >
  25.  
  26. What chip are you trying to program? This is not standard C.
  27.  
  28. However many real-life flexible compilers allow Hardware/OS specific 
  29. instructions. One of them is Visual C. You can say something like :
  30.  
  31. _asm
  32.   {
  33.   mov ax, bx
  34.   ...
  35.   ...
  36.   }
  37.  
  38. Please bear in mind, THIS IS NOT STANDARD C, It is not even C. :-)
  39.  
  40. -- 
  41. /* --------------------------------------------------------
  42.                       MAG@ESKIMO.COM
  43. http://www.eskimo.com/~mag/index.html
  44. ***********************************************************
  45. To understand recursion one must first understand recursion
  46. ***********************************************************
  47. -------------------------------------------------------- */
  48.  
  49.